Basic Tags - Arial size = 4
Basic Tags - Default Times new-Roman size 5

X12 ©
Ordered List
  1. Nissan
  2. Honda
  3. Toyota
Unordered List
Preformatted Text
#include   "iostream.h"

void
main(int  argc, char *argv[])  {
   int i=5;
   while(i--){
	   cout << i << " ";
   }
   cout << "End of While \n";
   i = 5;
   while(--i){
	   cout << i << " ";
   }
   cout << "End of While \n";
   for(int k = 5; k; k--){
	   cout << k << " ";
   }
   cout << "End of For  \n";
   for(int j = 5; j; --j){
	   cout << j << " ";
   }
   cout << "End of For  \n";
   cin >> i;

}

Header 1

Header 2

Header 3

Header 4

Header 5
Header 6

Now is the time for all good men to come to the aid of their country.

Now is the time for all good men to come to the aid of their country. Now is the time for all
good men to come to the aid of their country. Now is the time for all good men to come to the aid of their country.